home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- if %1x==x goto help
- echo This will copy all Envelope Printer files to %1:\ENV
- echo Press Ctrl-Break to abort or any other key to continue
- pause >nul
- echo Installing Envelope Printer files in %1:\ENV
- echo off
- md %1:\ENV
- copy env.* %1:\ENV
- copy return.add %1:\ENV
- copy readme.wri %1:\ENV
- copy asp.txt %1:\ENV
- copy file_id.diz %1:\ENV
- echo Installation complete!
- %1:
- cd\ENV
- goto END
- :help
- echo Envelope Printer installation
- echo ******************************************************************
- echo Usage: Install [destination] (Enter)
- echo where [destination] is drive where you want files installed
- echo ******************************************************************
- echo Example: Install C (Enter)
- echo will install files on drive C in directory \ENV
- :END
-